PacketEvent

Cancellable event, split into Send and Receive.

Called in the event of a packet being sent or received to the client via Minecraft.myNetworkManager

Inheritors

Types

Link copied to clipboard
class Receive(val packet: Packet<*>) : PacketEvent

Called in correspondence with net.minecraft.network.NetworkManager.channelRead0, which is called in the event that the client receives a packet from the server.

Link copied to clipboard
class Send(val packet: Packet<*>) : PacketEvent

Called in correspondence with net.minecraft.network.NetworkManager.sendPacket, which is called in the event that the client sends a packet to the server.

Properties

Link copied to clipboard
@get:JvmName(name = "isCancelled")
var cancelled: Boolean

This field defines whether the event is cancelled or not. Any mod can cancel and un-cancel an event. What an event does when cancelled is event-specific, and noted in that event's documentation.

Link copied to clipboard
val packet: Packet<*>

The packet being processed.